202511261627 vscode调试gunicorn python
202511261627 vscode调试gunicorn python
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Gunicorn(fastapi)",
"type": "debugpy",
"cwd": "${workspaceFolder}",
"request": "launch",
"program": "gunicorn",
// "gevent": true,
"args": [
"xxx.__main__:app",
" --bind",
" 0.0.0.0:8033 ",
"--config",
"conf/online/gunicorn.py"
],
"justMyCode": false, // 可以调试进入第三方库的代码中
"subProcess": true
}
]
}